home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / lib / posix / pipe.c < prev    next >
C/C++ Source or Header  |  1990-07-23  |  217b  |  15 lines

  1. #include <lib.h>
  2.  
  3. PUBLIC int pipe(fild)
  4. int fild[2];
  5. {
  6.   int k;
  7.   k = callm1(FS, PIPE, 0, 0, 0, NIL_PTR, NIL_PTR, NIL_PTR);
  8.   if (k >= 0) {
  9.     fild[0] = _M.m1_i1;
  10.     fild[1] = _M.m1_i2;
  11.     return(0);
  12.   } else
  13.     return(k);
  14. }
  15.